  .star-rating span {
      font-size: 2rem;
      color: #ccc;
      cursor: pointer;
    }

    .star-rating .filled {
      color: #ffc107;
    }
    .card-body h5{
      color: #1c456d;
    }
    /* applied.php */
     .custom-scroll::-webkit-scrollbar {
      width: 0px;
    }

    .custom-scroll {
      scrollbar-width: none;
      -ms-overflow-style: none;
    }
    /* appliedjob1.php */
     main {
    padding: 60px 0;
  }

  .job-details-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    padding: 32px;
    border: 1px solid #f0eaea;
  }

  .job-details-card h4 {
        font-size: 18px;
    margin-bottom: 10px;
    color: black;
  }


  .btn-outline-custom {
    color: #1c456d;
    border: 2px solid #1c456d;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    background: transparent;
  }

  .btn-outline-custom:hover {
    background: #1c456d;
    color: #fff;
  }


  ul {
    padding-left: 1.5rem;
    list-style-type: disc;
    color: #475569 !important;

  }

  ul li {
    /* margin-bottom: 0.5rem; */
    color: black !important;
  }

  .container p {
    color: black !important;
  }

  .text-muted p {
    color: black;
  }

  a {
    text-decoration: none;
  }

  .job-card {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
  }

  .job-card:hover {
    transform: translateY(-2px);
  }

  .badge-custom {
    background-color: #549463;

  }
  /* course */
  .subheading {
      color: #666;
      font-size: 15px;
      margin-bottom: 30px;
      text-align: center;
    }

    .swiper-button-next,
    .swiper-button-prev,
    .apt-btn-next,
    .apt-btn-prev {
      background-color: #f3f4f6;
      padding: 12px;
      border-radius: 9999px;
      color: #1f2937;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      font-weight: bold;
      font-size: 16px;
      transition: all 0.3s ease;
    }

    .swiper-button-next:hover,
    .swiper-button-prev:hover,
    .apt-btn-next:hover,
    .apt-btn-prev:hover {
      background-color: #1f2937;
      color: #fff;
      transform: scale(1.05);
    }

    .swiper-button-next::after,
    .swiper-button-prev::after,
    .apt-btn-next::after,
    .apt-btn-prev::after {
      font-size: 16px;
      font-weight: bold;
    }
    /* apply */
      h2 {
      color: #1c456d;
    }

    .apply-form {
      max-width: 1150px;
      margin: 0 auto;
      border: 1px solid #ddd;
    }

    .form-label {
      font-weight: 500;
      color: #333;
    }

    .btn-primary {
      background-color: #1c456d;
      border: none;
    }

    .btn-primary:hover {
      background-color: #574b90;
    }


    .container {
      max-width: 1400px;
      margin: 30px auto;
      padding: 20px;
    }

    .profile {
      font-size: 1.8rem;
      font-weight: bold;
      margin-bottom: 20px;
      color: #333;
    }

    .job-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(48%, 1fr));
      gap: 20px;
    }

    .job-card {
      background: #fff;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      position: relative;
      display: flex;
      flex-direction: column;
      transition: all 0.3s ease;
    }

    .job-card:hover {
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .job-card img {
      width: 40px;
      height: 40px;
      margin-bottom: 10px;
    }

    .job-title {
      font-size: 1.2rem;
      font-weight: bold;
      color: #333;
    }

    .company {
      color: #6c63ff;
      font-size: 0.95rem;
      margin-bottom: 10px;
    }

    .details {
      font-size: 0.85rem;
      color: #666;
      margin-bottom: 8px;
    }

    .btn-apply {
      align-self: flex-start;
      background: #1c456d;
      color: white;
      padding: 8px 16px;
      text-decoration: none;
      border-radius: 6px;
      margin-top: auto;
      transition: background 0.3s ease;
    }

    .btn-apply:hover {
      background: #574b90;
    }


    .save-icon:hover svg {
      stroke: gold;
      fill: gold;
    }

    .save-icon {
      color: #555;
      background: transparent;
      border: none;
      cursor: pointer;
      position: absolute;
      top: 16px;
      right: 16px;
      font-size: 1.4rem;
      /* color: #999; */
      /* cursor: pointer; */
      transition: color 0.3s ease;
    }

    .save-icon.saved {
      color: #6c63ff;
    }

    @media (max-width: 768px) {
      .job-grid {
        grid-template-columns: 1fr;
      }
    }
    /* journey.php */

       :root {
      --primary: #4f46e5;
      /* Example: Indigo */
      --primary-hover: #4338ca;
      /* Darker Indigo */
    }


    .modal {
      display: none;
      position: fixed;
      z-index: 999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.7);
    }

    .modal-content {
      margin: 5% auto;
      display: block;
      max-width: 70%;
      border-radius: 12px;
    }

    .close {
      position: absolute;
      top: 20px;
      right: 30px;
      color: #fff;
      font-size: 30px;
      cursor: pointer;
    }